Security News
New Python Packaging Proposal Aims to Solve Phantom Dependency Problem with SBOMs
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
@lingui/core
Advanced tools
@lingui/core is a library for internationalization (i18n) in JavaScript applications. It provides tools for managing translations, formatting messages, and handling locale data. It is designed to be flexible and easy to integrate with various frameworks and libraries.
Message Formatting
This feature allows you to format messages with placeholders that can be replaced with dynamic values. The example demonstrates loading a translation, activating a locale, and formatting a message with a dynamic name.
const { i18n } = require('@lingui/core');
const { setupI18n } = require('@lingui/core');
const i18n = setupI18n();
i18n.load({
en: {
message: 'Hello, {name}!'
}
});
i18n.activate('en');
const message = i18n._('message', { name: 'John' });
console.log(message); // Output: Hello, John!
Locale Management
This feature allows you to manage different locales and switch between them. The example shows how to load translations for multiple locales and activate a specific locale to get the translated message.
const { i18n } = require('@lingui/core');
const { setupI18n } = require('@lingui/core');
const i18n = setupI18n();
i18n.load({
en: { message: 'Hello' },
fr: { message: 'Bonjour' }
});
i18n.activate('fr');
const message = i18n._('message');
console.log(message); // Output: Bonjour
Custom Pluralization Rules
This feature allows you to define custom pluralization rules for different languages. The example demonstrates how to use pluralization in a message based on the count value.
const { i18n } = require('@lingui/core');
const { setupI18n } = require('@lingui/core');
const i18n = setupI18n();
i18n.load({
en: {
message: '{count, plural, one {# item} other {# items}}'
}
});
i18n.activate('en');
const message = i18n._('message', { count: 5 });
console.log(message); // Output: 5 items
i18next is a popular internationalization framework for JavaScript. It provides similar functionalities to @lingui/core, such as message formatting, locale management, and pluralization. However, i18next has a larger ecosystem with more plugins and integrations available.
react-intl is a library specifically designed for internationalization in React applications. It offers similar features to @lingui/core, such as message formatting and locale management, but is tightly integrated with React components and hooks.
Globalize is a library for internationalization and localization in JavaScript. It provides functionalities for formatting numbers, dates, and messages, similar to @lingui/core. Globalize is built on top of the Unicode CLDR data and focuses on providing comprehensive localization support.
Internationalization API for JavaScript apps
@lingui/core
is part of LinguiJS. See the documentation for all information, tutorials and examples.
npm install --save @lingui/core
# yarn add @lingui/core
See the tutorial or reference documentation.
This package is licensed under MIT license.
3.17.2 (2023-02-24)
missing
in setupI18nProps
(#1411) (6459f02)FAQs
I18n tools for javascript
The npm package @lingui/core receives a total of 90,037 weekly downloads. As such, @lingui/core popularity was classified as popular.
We found that @lingui/core demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PEP 770 proposes adding SBOM support to Python packages to improve transparency and catch hidden non-Python dependencies that security tools often miss.
Security News
Socket CEO Feross Aboukhadijeh discusses open source security challenges, including zero-day attacks and supply chain risks, on the Cyber Security Council podcast.
Security News
Research
Socket researchers uncover how threat actors weaponize Out-of-Band Application Security Testing (OAST) techniques across the npm, PyPI, and RubyGems ecosystems to exfiltrate sensitive data.